home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Personal Computer World 2007 September
/
PCWSEP07.iso
/
Software
/
Resources
/
Developers
/
XAMPP 1.5.4
/
Windows installer
/
xampp-win32-1.5.4-installer.exe
/
xampp
/
php-switch.bat
< prev
next >
Wrap
DOS Batch File
|
2005-09-26
|
329b
|
20 lines
@ECHO OFF
if exist php\php.exe GOTO Normal
if not exist php\php.exe GOTO Abort
:Abort
echo Sorry ... cannot find php cli!
echo Must abort these process!
pause
GOTO END
:Normal
set PHP_BIN=php\php.exe
set CONFIG_PHP=install\php-switch.php
%PHP_BIN% -n -d output_buffering=0 %CONFIG_PHP%
GOTO END
:END
pause